home *** CD-ROM | disk | FTP | other *** search
- /**************************************************************************
- * FRMNLMEN.C - frm_nlmenu(): Newline-delimited menu.
- *************************************************************************/
-
- #include "gemfintl.h"
-
- /**************************************************************************
- *
- *************************************************************************/
-
- short frm_nlmenu(options, title, strings)
- long options;
- register char *title;
- register char *strings;
- {
- short status;
- char *strptrs[FRM_DSMAXSTRINGS+1];
- char *strpatches[FRM_DSMAXSTRINGS+1];
-
- if (strings == NULL || *strings == '\0') {
- strings = "<error: no items>";
- }
-
- _FrmNL2DS(strings, strptrs, strpatches, FRM_DSMAXSTRINGS);
-
- status = frm_dsmenu(options, title, strptrs);
-
- _FrmNLPatch(strpatches);
-
- return status;
- }
-